/* ============================================
   KAWAN VACATION — Shared Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --green-dark:   #1a3328;
  --green-mid:    #2d5a45;
  --green-light:  #3d7a5e;
  --gold:         #e8a832;
  --gold-light:   #f5c842;
  --cream:        #fdf6ed;
  --cream-dark:   #f5ead8;
  --white:        #ffffff;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-muted:   #888888;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 28px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-full:  999px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.font-display { font-family: 'Playfair Display', serif; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 52px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(26, 51, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-logo .logo-icon {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  padding: 0;
}
.navbar-logo .logo-icon img {
  height: 48px;   /* bebas: 48–60px */
  width: auto;
  display: block;
}

.navbar-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.navbar-logo .logo-text span { color: var(--gold); }

.navbar-links {
  display: flex;
  gap: 32px;
}
.navbar-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--gold); }

.navbar-cta {
  background: var(--gold);
  color: var(--green-dark) !important;
  font-weight: 600 !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}
.navbar-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,168,50,0.4) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,168,50,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,51,40,0.3);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-wa::before { content: none !important; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.card-img img {
  height: 100%;
  transition: transform 0.5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-label {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--green-mid);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-title {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.card-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Facility list */
.facility-list {
  margin-bottom: 20px;
}
.facility-list li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--cream-dark);
}
.facility-list li:last-child { border-bottom: none; }
.facility-list li::before {
  content: "✓";
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Badge --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,168,50,0.12);
  color: var(--gold);
  border: 1px solid rgba(232,168,50,0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(165deg, rgba(10,28,20,0.88) 0%, rgba(30,70,50,0.72) 60%, rgba(10,28,20,0.9) 100%),
    url('images/tour-2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  max-width: 680px;
}
.hero-badge { margin-bottom: 20px; }
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

/* Package Pills in Hero */
.hero-packages {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.pkg-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--white);
  transition: var(--transition);
  cursor: default;
}
.pkg-pill:hover {
  background: rgba(232,168,50,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
.pkg-pill strong { color: var(--gold-light); font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================
   TRUST / RATING SECTION
   ============================================ */
.trust-section {
  padding: 60px 0;
  background: var(--white);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-rating {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rating-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.rating-stars { font-size: 1.2rem; letter-spacing: 2px; }
.rating-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.trust-divider {
  width: 1px;
  height: 60px;
  background: var(--cream-dark);
}
.trust-stat {
  text-align: center;
}
.trust-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
}
.trust-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-text {
  max-width: 320px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.trust-text strong { color: var(--green-dark); }

/* ============================================
   FEATURED PACKAGES
   ============================================ */
.featured-packages {
  background: var(--cream);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header .left { }

/* ============================================
   TOUR PAGE — MAIN PACKAGES
   ============================================ */
.tour-hero {
  background:
    linear-gradient(135deg, rgba(26,51,40,0.95) 0%, rgba(45,90,69,0.85) 100%),
    url('images/tour-1.jpg') center/cover no-repeat;
  padding: 140px 0 90px;
  text-align: center;
}
.tour-hero h1 { color: var(--white); margin-bottom: 14px; }
.tour-hero p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

.pickup-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  color: var(--green-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ============================================
   EXTRA PAKET — 2 col layout
   ============================================ */
.extra-section { background: var(--white); }

.extra-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  background: var(--white);
  transition: var(--transition);
}
.extra-item:hover { box-shadow: var(--shadow-md); }
.extra-item.reverse { direction: rtl; }
.extra-item.reverse > * { direction: ltr; }

.extra-img {
  height: 320px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.extra-img img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.extra-item:hover .extra-img img { transform: scale(1.04); }

.extra-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.extra-content .card-label { margin-bottom: 10px; }
.extra-content h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.extra-content .card-price { margin-bottom: 6px; }
.extra-min {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.extra-content .facility-list { margin-bottom: 24px; }

/* Jeep zones */
.jeep-zones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.jeep-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.875rem;
}
.jeep-zone .zone-name { font-weight: 600; color: var(--green-dark); }
.jeep-zone .zone-price { color: var(--gold); font-weight: 700; }
.jeep-zone .zone-cap { color: var(--text-muted); font-size: 0.78rem; }

/* ============================================
   VEHICLE RENTAL
   ============================================ */
.vehicle-section { background: var(--cream); }
.vehicle-section .section-hero-sub {
  text-align: center;
  margin-bottom: 48px;
}
.vehicle-section .start-from {
  display: inline-block;
  background: var(--green-dark);
  color: var(--gold);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 10px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.vehicle-card .card-img { height: 180px; }
.vehicle-card .card-body { padding: 20px; }
.vehicle-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 4px; }
.vehicle-card .v-price { font-size: 1.15rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.vehicle-card .v-cap { font-size: 0.8rem; color: var(--text-muted); }

.vehicle-cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 0 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 42px;
  width: auto;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
}
.footer-brand .logo-text span { color: var(--gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .navbar-links { display: none; }
  .navbar-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .trust-inner { flex-direction: column; align-items: flex-start; }
  .trust-divider { display: none; }

  .section-header { flex-direction: column; align-items: flex-start; }

  .extra-item, .extra-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .extra-img { height: 240px; }

  .hero-packages { gap: 8px; }
  .pkg-pill { font-size: 0.78rem; padding: 7px 13px; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ============================================
   PAGE HERO (reusable sub-page banner)
   ============================================ */
.page-hero {
  background:
    linear-gradient(135deg, rgba(26,51,40,0.95) 0%, rgba(45,90,69,0.85) 100%),
    url('images/tour-1.jpg') center/cover no-repeat;
  padding: 140px 0 90px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}
.page-hero .badge { margin-bottom: 20px; display: inline-flex; }

/* ============================================
   NEWS / UPDATE PAGE
   ============================================ */
.news-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.news-card .card-img { height: 210px; }
.news-card .card-img img { height: 100%; transition: transform 0.5s ease; }
.news-card:hover .card-img img { transform: scale(1.06); }

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.news-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-title {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}
.btn-text {
  background: none;
  border: none;
  color: var(--green-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-text:hover {
  color: var(--gold);
  gap: 10px;
}

/* ============================================
   VILA PAGE
   ============================================ */
.vila-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 48px;
  transition: var(--transition);
}
.vila-card:hover { box-shadow: var(--shadow-md); }

.vila-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vila-images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  height: 400px;
  overflow: hidden;
}
.vila-img-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  overflow: hidden;
  background: var(--cream-dark);
}
.vila-img-main img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vila-card:hover .vila-img-main img { transform: scale(1.05); }

.vila-img-thumb {
  overflow: hidden;
  background: var(--cream-dark);
}
.vila-img-thumb img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.vila-card:hover .vila-img-thumb img { transform: scale(1.06); }

.vila-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vila-content .card-label { margin-bottom: 10px; }
.vila-content h3 {
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.vila-content .card-price { margin-bottom: 8px; }
.vila-cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.vila-content .card-desc { margin-bottom: 16px; }
.vila-content .facility-list { margin-bottom: 24px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 56px; height: 56px;
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.contact-info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-info-card a {
  color: var(--green-mid);
  font-weight: 600;
  transition: var(--transition);
}
.contact-info-card a:hover { color: var(--gold); }

/* Contact form + map two-col */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45,90,69,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.map-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-wrap h3 {
  font-size: 1.4rem;
  color: var(--green-dark);
}
.map-placeholder {
  width: 100%;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-dark);
  border: 2px dashed rgba(45,90,69,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.map-placeholder .map-icon { font-size: 2.5rem; }
.map-placeholder strong { color: var(--green-mid); font-size: 1rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-story-img img { height: 100%; object-fit: cover; }
.about-story-img .img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.about-story-img .img-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-story-img .img-badge .badge-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  max-width: 80px;
  line-height: 1.4;
}

.about-story-text .badge { margin-bottom: 20px; }
.about-story-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-story-text p {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.about-value .v-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-value h4 {
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.about-value p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.team-photo {
  height: 200px;
  overflow: hidden;
  background: var(--cream-dark);
}
.team-photo img { height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info {
  padding: 20px 16px;
}
.team-info h4 {
  font-size: 1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Legal section */
.legal-section { background: var(--cream); }
.legal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.legal-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 360px;
  background: var(--cream-dark);
}
.legal-img-wrap img { height: 100%; object-fit: cover; }
.legal-content .badge { margin-bottom: 20px; }
.legal-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 16px;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.legal-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.legal-badge span { font-size: 1.1rem; }

/* Big CTA Banner (reused across pages) */
.cta-banner {
  background: var(--green-dark);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 8px;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================
   NEW PAGES — RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-two-col   { grid-template-columns: 1fr; }
  .about-story-grid  { grid-template-columns: 1fr; }
  .about-story-img   { height: 320px; }
  .legal-inner       { grid-template-columns: 1fr; }
  .legal-img-wrap    { height: 260px; }
  .team-grid         { grid-template-columns: repeat(2, 1fr); }
  .vila-card-inner   { grid-template-columns: 1fr; }
  .vila-images       { height: 280px; }
  .vila-content      { padding: 28px 24px; }
  .contact-form-wrap { padding: 28px 20px; }
  .cta-banner        { padding: 60px 0; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}
